All Questions
8 questions
5votes
2answers
7kviews
Parsing a JSON file upload
I'm trying to parse a JSON file upload. I know the format JSON will arrive as this: ...
1vote
1answer
168views
Call URL x times where x is in the JSON response after the first call
I have to make an HTTP POST request by passing header and body. In the body, I need to provide a pageNumber before posting data so I am starting with "1" initially. ...
5votes
2answers
3kviews
Java/Kotlin JSON parsing improvement
I consume an API which gives me this type of JSON: ...
2votes
0answers
593views
JSON schema using Java objects
I have this JSON schema: ...
5votes
1answer
385views
Create Java object from from page content or plain text
My job is to make a specified java objects from web page that contains following text: Companies: ...
2votes
1answer
9kviews
Filtering JSONArray by Branding & Modelling
I have a small function that takes in a list of JSON objects that has the format below. The function below that wants to see if the brand and model of car passed to it can be matched against the List ...
4votes
2answers
179views
Serializing data from two URLs in the same object efficiently
This is a follow-up to: Serializing JSON data coming from two URLs in the same object I have two URLs (urlA and urlB) and they ...
8votes
1answer
27kviews
Optimize JSON insertion to SQLite (insert ... on duplicate key ignore)
In current task, I'm refactoring the code of converting JSON file into SQLite database on Android device. Code compliant with Java 6. As a benchmark, grabbing the code from remote server takes ...